Can someone please explain why this doesn't work? Composing protocols in this way seems obvious and natural. That it doesn't work is bewildering.
Post
Replies
Boosts
Views
Activity
Thank you!
I was using this method:
musicPlayer.queue = [playlist]
And it worked once, and then it played the same playlist forever, no matter what I did. Changing it to your method made it work with different playlists.
func loadLibraryPlaylists() async throws {
let request = MusicLibraryRequest()
let response = try await request.response()
resetPlaylist()
for item in response.items {
playlists.append(ApplePlaylistModel(name: item.name, playlistId: item.id.rawValue))
}
}
I'm having this too. Where did you place this code? Thanks.
One part ofit nrigoni is you have to enable icloud for the extension. Unfortunately, it then fails for me because the bundle ids are different.
That seems to be the case for me as well. Is there a way around it? I tried moving the focusfield and that didn't help.
What is TabBarView?